home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / howtoo1r / settings.bas < prev    next >
BASIC Source File  |  1999-08-25  |  407b  |  18 lines

  1. Attribute VB_Name = "settings"
  2.  
  3.  
  4. 'maximum ammount of clients
  5.  
  6. 'the maximum clients the server will handle
  7. Public Const server_max_clients = 200
  8.  
  9. 'the default maximum number of clients
  10. Public Const default_max_clients = 20
  11. Public max_clients As Integer
  12.  
  13. 'port for clients to connect to
  14. Public Const default_server_port = "6000"
  15. Public server_port As Long
  16.  
  17. Public live_connections As Integer
  18.